docs: don't use <parameter> tags
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 4 Feb 2014 23:30:46 +0000 (18:30 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Tue, 4 Feb 2014 23:30:46 +0000 (18:30 -0500)
gtk/gtkfilechooserwidget.c
gtk/gtkmain.c
gtk/gtkstylecontext.c
gtk/gtktestutils.c

index 4248000d2e32c5aab63d62a87036f71094028b8f..cbd1ab381dfef8e36fd913b266523a1df133cce7 100644 (file)
@@ -7181,7 +7181,7 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class)
    * @path string of "`/`"
    * (a slash):  this lets you type <keycap>/</keycap> and
    * immediately type a path name.  On Unix systems, this is bound to
-   * <keycap>~</keycap> (tilde) with a <parameter>path</parameter> string
+   * <keycap>~</keycap> (tilde) with a @path string
    * of "~" itself for access to home directories.
    */
   signals[LOCATION_POPUP] =
index 2324af5cf7e2c425d7c9d294ee25ae5da8909296..1058d33b5658ba9363395af6af065c7aa4c97e6c 100644 (file)
@@ -833,11 +833,11 @@ gtk_get_option_group (gboolean open_default_display)
 
 /**
  * gtk_init_with_args:
- * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
+ * @argc: (inout): Address of the `argc` parameter of
  *     your main() function (or 0 if @argv is %NULL). This will be changed if 
  *     any arguments were handled.
  * @argv: (array length=argc) (inout) (allow-none): Address of the
- *     <parameter>argv</parameter> parameter of main(), or %NULL. Any options
+ *     `argv` parameter of main(), or %NULL. Any options
  *     understood by GTK+ are stripped before return.
  * @parameter_string: (allow-none): a string which is displayed in
  *    the first line of `--help` output, after
@@ -952,11 +952,11 @@ gtk_parse_args (int    *argc,
 
 /**
  * gtk_init_check:
- * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
+ * @argc: (inout): Address of the `argc` parameter of
  *     your main() function (or 0 if @argv is %NULL). This will be changed if 
  *     any arguments were handled.
  * @argv: (array length=argc) (inout) (allow-none): Address of the
- *     <parameter>argv</parameter> parameter of main(), or %NULL. Any options
+ *     `argv` parameter of main(), or %NULL. Any options
  *     understood by GTK+ are stripped before return.
  *
  * This function does the same work as gtk_init() with only a single
@@ -986,11 +986,11 @@ gtk_init_check (int    *argc,
 
 /**
  * gtk_init:
- * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
+ * @argc: (inout): Address of the `argc` parameter of
  *     your main() function (or 0 if @argv is %NULL). This will be changed if 
  *     any arguments were handled.
  * @argv: (array length=argc) (inout) (allow-none): Address of the
- *     <parameter>argv</parameter> parameter of main(), or %NULL. Any options
+ *     `argv` parameter of main(), or %NULL. Any options
  *     understood by GTK+ are stripped before return.
  *
  * Call this function before using any other GTK+ functions in your GUI
index 247d1ca1c9189a74afa1b1a0ccad38540efe2eb5..11498a54d73c9118ea3caff2035c3746f86b7d20 100644 (file)
@@ -3855,9 +3855,7 @@ gtk_render_arrow (GtkStyleContext *context,
  * Renders the background of an element.
  *
  * Typical background rendering, showing the effect of
- * <parameter>background-image</parameter>,
- * <parameter>border-width</parameter> and
- * <parameter>border-radius</parameter>:
+ * `background-image`, `border-width` and `border-radius`:
  *
  * ![](background.png)
  *
@@ -3903,11 +3901,8 @@ gtk_render_background (GtkStyleContext *context,
  *
  * Renders a frame around the rectangle defined by @x, @y, @width, @height.
  *
- * Examples of frame rendering, showing the effect of
- * <parameter>border-image</parameter>,
- * <parameter>border-color</parameter>,
- * <parameter>border-width</parameter>,
- * <parameter>border-radius</parameter> and junctions:
+ * Examples of frame rendering, showing the effect of `border-image`,
+ * `border-color`, `border-width`, `border-radius` and junctions:
  *
  * ![](frames.png)
  *
index 205f7288e7367e451fd3b0087ad1295a51e3e674..dc976e6bf84532644e886ce8dd1b1cd6db198e93 100644 (file)
 
 /**
  * gtk_test_init:
- * @argcp: Address of the <parameter>argc</parameter> parameter of the
+ * @argcp: Address of the `argc` parameter of the
  *        main() function. Changed if any arguments were handled.
  * @argvp: (inout) (array length=argcp): Address of the 
- *        <parameter>argv</parameter> parameter of main().
+ *        `argv` parameter of main().
  *        Any parameters understood by g_test_init() or gtk_init() are
  *        stripped before return.
  * @...: currently unused